From: Ian Jackson Date: Tue, 25 Sep 2012 17:39:39 +0000 (+0100) Subject: docs: network network diagrams for the wiki (Makefile) X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~7859 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=593aa8ab2d8ec304bf1da867c4129446ec543fa4;p=xen.git docs: network network diagrams for the wiki (Makefile) Add the Makefile in hg as well as git. Sorry. Signed-off-by: Ian Jackson Committed-by: Ian Jackson --- diff --git a/docs/figs/Makefile b/docs/figs/Makefile new file mode 100644 index 0000000000..5ecdae37fe --- /dev/null +++ b/docs/figs/Makefile @@ -0,0 +1,15 @@ + +XEN_ROOT=$(CURDIR)/../.. +include $(XEN_ROOT)/Config.mk +include $(XEN_ROOT)/docs/Docs.mk + +TARGETS= network-bridge.png network-basic.png + +all: $(TARGETS) + +%.png: %.fig + $(FIG2DEV) -L png $< >$@.tmp + mv -f $@.tmp $@ + +clean: + rm -f *~ *.png